Component org.nuxeo.ecm.platform.digestauth.config
In bundle org.nuxeo.runtime
Resolution Order
11
The resolution order represents the order in which this component has been resolved by the Nuxeo Runtime
framework.
You can influence this order by adding "require" tags in your component declaration, to make sure it is resolved after another component.
Contributions
- org.nuxeo.ecm.platform.digestauth.config--directories
- org.nuxeo.ecm.platform.digestauth.config--userManager
XML Source
<?xml version='1.0' encoding='UTF-8'?>
<component name="org.nuxeo.ecm.platform.digestauth.config">
<extension target="org.nuxeo.ecm.directory.GenericDirectory" point="directories">
<directory name="digestauth" extends="template-directory">
<schema>digestauth</schema>
<idField>username</idField>
<passwordField>password</passwordField>
<types>
<type>system</type>
</types>
</directory>
</extension>
<extension target="org.nuxeo.ecm.platform.usermanager.UserService" point="userManager">
<userManager>
<digestAuthDirectory>digestauth</digestAuthDirectory>
<digestAuthRealm>NUXEO</digestAuthRealm>
<userCacheName>default-cache</userCacheName>
</userManager>
</extension>
</component>